﻿@charset "utf-8";
/**
 * Zhang Jian reset css
 * 2017-now
 */

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: middle;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
    display: block;
}
ol, ul, li{
    list-style: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a{
    color: #666;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
a:hover{
    text-decoration: none;
    color:#333;
}
::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece{
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical{
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal{
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
html, body{
    width: 100%;
    font-family:PingFang SC,Lantinghei SC,Helvetica Neue,Helvetica,Arial,Microsoft YaHei,微软雅黑,STHeitiSC-Light,simsun,宋体,WenQuanYi Zen Hei,WenQuanYi Micro Hei,"sans-serif";
    color: #666;
}
body{
    line-height: 1.8;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 12px;
}
img{
    max-width: 100%;
}

:root{
    --theme-color:#0659ae;
    --secondary-color:#ffb400;
    --color-fixedright:#1f68b9;
}
/*浮动*/

.left{
    float: left;
}
.right{
    float: right;
}


/*弹性布局*/
.flex{
    display: flex;
}
.flex_wrap{
    flex-wrap: wrap;
}

/*定位*/
.pr{
    position: relative;
}
.pa{
    position: absolute;
}


/* 文字截取 */

.text-overflow{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.text-overflow-line2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow-line3{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*清除浮动*/
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

/*页面宽度*/
.wrapper{
    
    margin:0 auto;
}
.wrapper{
    width:1200px;
}
@media screen and (min-width: 1441px) {
    
}
/*@media screen and (max-width: 1440px) {*/
/*    .wrapper{*/
/*        width:1200px;*/
/*    }*/
/*}*/
/*隐藏*/
.dn{
    display: none;
}

/*按钮*/

.more_style1{
    display: inline-block;
    padding: 10px 30px;
    border:1px solid #f7b52c;
    position: relative;
    font-size: 14px;
    font-weight: normal;
    font-family: Arial;
    color:#fff;
    text-transform: uppercase;
    text-align: center;
    background: #f7b52c;
    border-radius: 3px;
    line-height: 1.1;
    margin-top: 60px;
}

.more_style1 div{
    transition: transform .3s, opacity .3s;
}
.more_style1 .dubbed{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    pointer-events: none;
}
.more_style1:hover{
    color:#f7b52c;
    background-color:transparent;
    border-color:rgba(255, 255, 255, 0.3);
    background: #fff;
}
.more_style1:hover .original{
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}
.more_style1:hover .dubbed{
    opacity: 1;
    transform: none;
}


/*鼠标经过图片放大*/

.img_scale .img{
    overflow: hidden;
}
.img_scale .img img{
    transition: all .5s;
}
.img_scale:hover .img img{
    transform: scale(1.2);
}

.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top:20px;
}
.mb20{
    margin-bottom:20px;
}
.ptb30{
    padding:30px 0;
}
.mtb40{
    margin:40px 0;
}
.mt40{
    margin-top:40px;
}
.pt50{
    padding-top: 50px;
}
.pb80{
    padding-bottom: 80px;
}
.pb60mb20{
    padding-bottom: 60px;
}
.plr80mb0{
    padding-left: 80px;
    padding-right: 80px;
}
.p3540mb150{
    padding:35px 40px;
}
@media screen and ( max-width: 1200px){
    .pt50{
        padding-top: 20px;
    }
    .pb80{
        padding-bottom: 30px;
    }
    .plr80mb0{
        padding-left: 0;
        padding-right: 0;
    }
    .pb60mb20{
        padding-bottom: 20px;
    }
    .p3540mb150{
        padding:15px 0;
    }
}